home *** CD-ROM | disk | FTP | other *** search
/ AGA Toolkit '97 / The AGA Toolkit '97.iso / programming / gui / mui2.2 / developer / extclasses / mcc_busy / include / mui / busy_mcc.h
Encoding:
C/C++ Source or Header  |  1996-09-07  |  604 b   |  38 lines

  1. /*
  2.  
  3.         Busy.mcc (c) 1994 by kmel, Klaus Melchior
  4.  
  5.         Registered MUI class, Serial Number: 0002
  6.  
  7.         busy_mcc.h
  8.  
  9. */
  10.  
  11.  
  12. #ifndef MUI_BUSY_MCC_H
  13. #define MUI_BUSY_MCC_H
  14.  
  15. #ifndef LIBRARIES_MUI_H
  16. #include "libraries/mui.h"
  17. #endif
  18.  
  19.  
  20. #define MUIM_Busy_Move     0x80020001
  21. #define MUIA_Busy_Position 0x80020002
  22. #define MUIA_Busy_Color1   0x80020003
  23. #define MUIA_Busy_Color2   0x80020004
  24. #define MUIA_Busy_Size     0x80020005
  25.  
  26. #define MUIC_Busy "Busy.mcc"
  27.  
  28. #define BusyObject MUI_NewObject(MUIC_Busy
  29.  
  30. #define BusyBar\
  31.     BusyObject,\
  32.         GaugeFrame,\
  33.         MUIA_Background, MUII_BACKGROUND,\
  34.         End
  35.  
  36. #endif /* MUI_BUSY_MCC_H */
  37.  
  38.